projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e35929e
)
dm: part: Add a cast to avoid a compiler warning
author
Simon Glass
<
[email protected]
>
Mon, 29 Feb 2016 22:25:45 +0000
(15:25 -0700)
committer
Simon Glass
<
[email protected]
>
Mon, 14 Mar 2016 21:34:50 +0000
(15:34 -0600)
In part_amiga.c the name is unsigned but bcpl_strcpy() requires a signed
pointer. Add a cast to fix the warning.
Signed-off-by: Simon Glass <
[email protected]
>
Reviewed-by: Bin Meng <
[email protected]
>
Tested-by: Stephen Warren <
[email protected]
>
disk/part_amiga.c
patch
|
blob
|
history
diff --git
a/disk/part_amiga.c
b/disk/part_amiga.c
index 008941c53282ee4a6d99f1b8c8283293269b7e1d..5702c957827d97310f9d436c3e518c59a805637b 100644
(file)
--- a/
disk/part_amiga.c
+++ b/
disk/part_amiga.c
@@
-304,7
+304,7
@@
int get_partition_info_amiga(struct blk_desc *dev_desc, int part,
info->start = g->low_cyl * g->block_per_track * g->surfaces;
info->size = (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1;
info->blksz = rdb.block_bytes;
- bcpl_strcpy(info->name, p->drive_name);
+ bcpl_strcpy(
(char *)
info->name, p->drive_name);
disk_type = g->dos_type;